home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Essentials / MacApp Documentation / MacApp.TECH$ Archives / 1989 / Sep 89 / Y0024-Re Dialog Problems-Sep89 < prev    next >
Encoding:
Text File  |  1991-03-06  |  833 b   |  32 lines  |  [TEXT/GEOL]

  1. Item    1496001                         7-Sept-89        07:46
  2.  
  3. From:   KEMINK1                         Kemink, Joost,APL
  4.  
  5. To:     D2769                           Comusearch, James Benson,PRT
  6.  
  7. cc:     MACAPP.TECH$                    MACAPP Tech
  8.  
  9. Sub:    Re to Dialog Problems
  10.  
  11. Manuel,
  12.  
  13. Tabs and Returns in Modal Dialogs should work normally, have you checked
  14. whether your window and dialog view are enabled? Also, if you override the
  15. DoChoice method of your dialog view, be sure that you call INHERITED DoChoice
  16. whenever origView contains a view that you don't handle:
  17.  
  18. PROCEDURE TYourDialog.DoChoice(origView:TView;itsChoice:INTEGER); OVERRIDE;
  19. BEGIN
  20.    IF origView.fIdentifier=kViewIDThatIsHandledByMe THEN
  21.    BEGIN
  22.   { Handle it }
  23.    END
  24.    ELSE
  25.    INHERITED DoChoice(origView,itsChoice);
  26. END;
  27.  
  28. Hope this helps,
  29.  
  30. Joost
  31.  
  32.